home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Files / Errors / DirectoryFullError.h < prev    next >
Text File  |  1997-06-28  |  299b  |  21 lines

  1. // DirectoryFullError.h
  2.  
  3. #ifndef DirectoryFullError_h
  4. #define DirectoryFullError_h
  5.  
  6. #ifndef FileError_h
  7. #include "FileError.h"
  8. #endif
  9.  
  10. class DirectoryFullError: public FileError
  11.   {
  12.     public:
  13.         DirectoryFullError( OSErr error )
  14.           : FileError( error )
  15.           {}
  16.         
  17.         // Used for dirFulErr
  18.   };
  19.  
  20. #endif
  21.